home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / refint / REFINT.ZIP / RefIntReg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-05-25  |  439 b   |  20 lines

  1. unit RefIntReg;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, RefInt, DsgnIntf;
  7.  
  8. procedure Register;
  9.  
  10. implementation
  11.  
  12. procedure Register;
  13. begin
  14.   RegisterComponents('Xmakina', [TRefInt]);
  15.   RegisterPropertyEditor(TypeInfo(string),TRefInt,'AliasName',TAliasNameProperty);
  16.   RegisterPropertyEditor(TypeInfo(string),TRefInt,'InternalAliasName',TAliasNameProperty);
  17. end;
  18.  
  19. end.
  20.